{gridName}_full_date

定义在 id='date' 的列中日期的显示方式

startDate事件的起始日期
endDate事件的结束日期
evobject事件详情

Available only in PRO Edition

Example

scheduler.templates.grid_full_date = function(start,end,event){
    if (scheduler.isOneDayEvent(event))
        return scheduler.templates.grid_single_date(start);
    else
        return scheduler.templates.day_date(start)+" – "
        +scheduler.templates.day_date(end);
};

Applicable views:Grid 视图
Details

此模板依赖于启用 grid_view 插件。

See also
返回顶部